home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / encodings / iso8859_10.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  2KB  |  85 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. """ Python Character Mapping Codec generated from '8859-10.TXT' with gencodec.py.
  5.  
  6. Written by Marc-Andre Lemburg (mal@lemburg.com).
  7.  
  8. (c) Copyright CNRI, All Rights Reserved. NO WARRANTY.
  9. (c) Copyright 2000 Guido van Rossum.
  10.  
  11. """
  12. import codecs
  13.  
  14. class Codec(codecs.Codec):
  15.     
  16.     def encode(self, input, errors = 'strict'):
  17.         return codecs.charmap_encode(input, errors, encoding_map)
  18.  
  19.     
  20.     def decode(self, input, errors = 'strict'):
  21.         return codecs.charmap_decode(input, errors, decoding_map)
  22.  
  23.  
  24.  
  25. class StreamWriter(Codec, codecs.StreamWriter):
  26.     pass
  27.  
  28.  
  29. class StreamReader(Codec, codecs.StreamReader):
  30.     pass
  31.  
  32.  
  33. def getregentry():
  34.     return (Codec().encode, Codec().decode, StreamReader, StreamWriter)
  35.  
  36. decoding_map = codecs.make_identity_dict(range(256))
  37. decoding_map.update({
  38.     161: 260,
  39.     162: 274,
  40.     163: 290,
  41.     164: 298,
  42.     165: 296,
  43.     166: 310,
  44.     168: 315,
  45.     169: 272,
  46.     170: 352,
  47.     171: 358,
  48.     172: 381,
  49.     174: 362,
  50.     175: 330,
  51.     177: 261,
  52.     178: 275,
  53.     179: 291,
  54.     180: 299,
  55.     181: 297,
  56.     182: 311,
  57.     184: 316,
  58.     185: 273,
  59.     186: 353,
  60.     187: 359,
  61.     188: 382,
  62.     189: 8213,
  63.     190: 363,
  64.     191: 331,
  65.     192: 256,
  66.     199: 302,
  67.     200: 268,
  68.     202: 280,
  69.     204: 278,
  70.     209: 325,
  71.     210: 332,
  72.     215: 360,
  73.     217: 370,
  74.     224: 257,
  75.     231: 303,
  76.     232: 269,
  77.     234: 281,
  78.     236: 279,
  79.     241: 326,
  80.     242: 333,
  81.     247: 361,
  82.     249: 371,
  83.     255: 312 })
  84. encoding_map = codecs.make_encoding_map(decoding_map)
  85.